home *** CD-ROM | disk | FTP | other *** search
/ Presentation World / Presentation World.iso / vfw11d / setup.mst < prev    next >
Text File  |  1994-09-09  |  11KB  |  291 lines

  1. '**************************************************************************
  2. '*                  VfW 1.1 Runtime Setup
  3. '**************************************************************************
  4. '$INCLUDE 'setupapi.inc'
  5. '$INCLUDE 'mscpydis.inc'    ''System
  6. '$INCLUDE 'msdetect.inc'    ''Detects Avalilable Disk Space
  7.  
  8. ''Dialog ID's
  9. CONST WELCOME       = 100
  10. CONST ASKQUIT       = 200
  11. CONST EXITFAILURE   = 400
  12. CONST EXITQUIT      = 600
  13. CONST EXITSUCCESS   = 700
  14. CONST APPHELP       = 900
  15. CONST CHECK         = 2500
  16. CONST SMALLWIN      = 2200
  17. CONST RESTART       = 2600
  18. CONST RESTARTII     = 2700
  19.  
  20. ''Bitmap ID
  21. CONST LOGO = 1
  22.  
  23. GLOBAL SizeReq&  '' Total Disk Size required for installation
  24.  
  25. ''File Types
  26. GLOBAL WinDir$
  27. GLOBAL WinSysDir$
  28. GLOBAL WINDRIVE$    ''Windows Drive Letter.
  29. GLOBAL CHECKSTATES$
  30. GLOBAL MinorVer%
  31. GLOBAL OnNT$
  32.  
  33. DECLARE SUB Install
  34. DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING
  35. DECLARE FUNCTION OnWindowsNT LIB "INIUPD.DLL" AS INTEGER
  36. DECLARE FUNCTION VflatdPresent LIB "iniupd.DLL" AS INTEGER
  37. DECLARE SUB Reboot LIB "iniupd.dll"
  38. DECLARE fUNCTION ExitWindowsExec  LIB "User" (Exec$, Param$) AS INTEGER
  39.  
  40. INIT:
  41.   
  42.     CUIDLL$ = "mscuistf.dll"            ''Custom user interface dll
  43.     HELPPROC$ = "FHelpDlgProc"          ''Help dialog procedure
  44.     
  45.     WIN32ENABLED% = 0
  46.     MajorVer% = GetWindowsMajorVersion()
  47.     MinorVer% = GetWindowsMinorVersion()
  48.     Processor% = GetProcessorType()
  49.     WinDir$ = GetWindowsDir()
  50.     DEST$ = GetWindowsDir()
  51.     WinSysDir$ = GetWindowsSysDir()
  52.  
  53.     IF MajorVer% < 3 OR (MajorVer% = 3 AND MinorVer% < 10) THEN
  54.     i% = DoMsgBox("Microsoft Windows version 3.10 or greater is required for this software.  Please upgrade your version of Windows.", "Installation Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  55.     END
  56.     END IF
  57.  
  58.     'Prevents installation on 286
  59.     IF Processor% < 3 THEN
  60.     i% = DoMsgBox("Video for Windows requires a 386 or greater processor or emulator.", "Installation Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  61.     END
  62.     END IF
  63.  
  64.     ' Use Wowexec to determine version of NT.  3.1 did not stamp wowexec and wow returns 3.1 as version
  65.     IF OnWindowsNT() THEN
  66.       OnNT$ = "TRUE"
  67.       WowVersion$ = GetVersionOfFile(WinDir$ + "system32\wowexec.exe")
  68.       IF WowVersion$ = "" THEN
  69.          i% = DoMsgBox("Video for Windows does not run on Windows NT 3.1.  Please upgrade your version of Windows.", "Installation Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  70.          END
  71.       END IF
  72.     END IF
  73.  
  74.     SetBitmap CUIDLL$, LOGO
  75.     SetTitle "Video for Windows 1.1 Runtime"
  76.  
  77.     szInf$ = GetSymbolValue("STF_SRCINFPATH")
  78.     IF szInf$ = "" THEN
  79.        szInf$ = GetSymbolValue("STF_CWDDIR") + "SETUP.INF"
  80.     END IF
  81.     ReadInfFile szInf$
  82.  
  83.     WINDRIVE$ = MID$(GetWindowsDir, 1, 1)
  84.  
  85. WELCOME:
  86.     sz$ = UIStartDlg(CUIDLL$, WELCOME, "FInfoDlgProc", APPHELP, HELPPROC$)
  87.     IF sz$ = "CONTINUE" THEN
  88.        UIPop 1
  89.      ELSE
  90.     GOSUB ASKQUIT
  91.     GOTO WELCOME
  92.     END IF
  93.  
  94. ''Prepare Copy list and check size
  95.  
  96.     ClearCopyList
  97.     SrcDir$ = GetSymbolValue("STF_SRCDIR")
  98.  
  99. ''  Runtime files (on Windows disk)
  100. ''  Do not install OLE or MPlayer if on next release of NT or Windows
  101.  
  102.     IF ((NOT OnNT$ = "TRUE") AND MinorVer% < 50) THEN            'These files not necessary on Windows NT
  103.     AddSectionFilesToCopyList "MPlayer", SrcDir$, WinDir$
  104.     AddSectionFilesToCopyList "OLE2", SrcDir$, WinSysDir$
  105.     END IF
  106.     AddSectionFilesToCopyList "VfW Runtime", SrcDir$, WinSysDir$
  107.     AddSectionFilesToCopyList "ACM Drivers", SrcDir$, WinSysDir$
  108.     AddSectionFilesToCopyList "AVICodecs", SrcDir$, WinSysDir$
  109. ''*************************************************************************************************************************
  110. ''*************************************************************************************************************************
  111. ''To add a DCI provider, please un-comment the AddSectionFilesToCopyList.
  112. ''
  113. ''    AddSectionFilesToCopyList "DCI Provider", SrcDir$, WinSysDir$
  114. ''*************************************************************************************************************************
  115. ''*************************************************************************************************************************
  116.  
  117. ''  Check windrive diskspace
  118.     SizeReq& = GetCopyListCost ("","", "")
  119.     IF SizeReq& <> 0 THEN
  120.     GOSUB SMALLWIN
  121.     END
  122.     END IF
  123.  
  124. Install
  125.  
  126. '' Restart Windows: if it has to updates ACM from DOS, it restarts Windows automatically
  127. '' else, it gives the user the choice
  128.     RESTRT% = RestartListEmpty ()
  129.     Exe$ = DEST$ + "\_msrstrt.exe"
  130.     Batch$ = DEST$ + "\_mssetup.bat"
  131.     empty$ = ""
  132. RESTART:
  133.     IF RESTRT% = 0 THEN
  134.        sz$ = UIStartDlg(cuidll$, RESTART, "FInfo0DlgProc", 0, "")
  135.        IF sz$ = "REACTIVATE" THEN
  136.       GOTO RESTART
  137.        ENDIF
  138.        I% = ExitExecRestart ()
  139.        RemoveFile Exe$, cmoForce
  140.        RemoveFile Batch$, cmoForce
  141.        END
  142.     ELSE
  143.        sz$ = UIStartDlg(CUIDLL$, RESTARTII, "FQuitDlgProc", 0, "")
  144.        IF sz$ = "CONTINUE" THEN
  145.       I% = ExitWindowsExec (Exe$, empty$)
  146.       IF I% = 0 THEN
  147.          GOTO RESTART
  148.       ELSE
  149.          END
  150.      ENDIF
  151.        ELSEIF sz$ = "EXIT" THEN
  152.       UIPopAll
  153.       END
  154.        ELSEIF sz$ = "REACTIVATE" THEN
  155.       GOTO RESTART
  156.        ELSE
  157.       UIPop 1
  158.        END IF
  159.     END IF
  160.  
  161.  
  162. QUIT:
  163.     ON ERROR GOTO ERRQUIT
  164.  
  165.     IF ERR = 0 THEN
  166.     dlg% = EXITSUCCESS
  167.     ELSEIF ERR = STFQUIT THEN
  168.     dlg% = EXITQUIT
  169.     ELSE
  170.     dlg% = EXITFAILURE
  171.     END IF
  172. QUITL1:
  173.     sz$ = UIStartDlg(CUIDLL$, dlg%, "FInfo0DlgProc", 0, "")
  174.     IF sz$ = "REACTIVATE" THEN
  175.     GOTO QUITL1
  176.     END IF
  177.     UIPop 1
  178.     END
  179.  
  180. ERRQUIT:
  181.     i% = DoMsgBox("An installation problem occured, call the product support service", "Setup Problem", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  182.     END
  183.  
  184.  
  185. ASKQUIT:
  186.     sz$ = UIStartDlg(CUIDLL$, ASKQUIT, "FQuitDlgProc", 0, "")
  187.  
  188.     IF sz$ = "EXIT" THEN
  189.     UIPopAll
  190. ''        ERROR STFQUIT
  191.     END
  192.     ELSEIF sz$ = "REACTIVATE" THEN
  193.     GOTO ASKQUIT
  194.     ELSE
  195.     UIPop 1
  196.     END IF
  197.     RETURN
  198.  
  199. SMALLWIN:
  200.     sz$ = UIStartDlg(CUIDLL$, SMALLWIN, "FInfo0DlgProc", 0, "")
  201.     IF sz$ = "REACTIVATE" THEN
  202.     GOTO SMALLWIN
  203.     END IF
  204.     UIPop 1
  205.     RETURN
  206.  
  207. '**
  208. '** Purpose:
  209. '**     Performs all installation operations.
  210. '** Arguments:
  211. '**     none.
  212. '** Returns:
  213. '**     none.
  214. '*************************************************************************
  215. SUB Install STATIC
  216.  
  217.     SetRestartDir WinDir$
  218.     CopyFilesInCopyList
  219.  
  220. ''Updating WIN.INI and SYSTEM.INI
  221. ''Only update SYSTEM.INI  on NT or next version of Windows for other codecs
  222.  
  223. IF ((NOT OnNT$ = "TRUE") AND MinorVer% < 50) THEN
  224.     IF VflatdPresent() = 0 THEN
  225.        CreateSysIniKeyValue WinDir$ + "system.ini", "386Enh", "device", "dva.386", cmoOverwrite
  226.     END IF
  227. END IF
  228.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.CVID", "iccvid.drv", cmoOverwrite
  229.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.MSVC", "msvidc.drv", cmoOverwrite
  230.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.IV32", "ir32.dll", cmoOverwrite
  231.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.IV31", "IR32.dll", cmoOverwrite
  232.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.MRLE", "MSRLE.drv", cmoOverwrite
  233.     I% = DoesIniKeyExist ("system.ini", "Drivers", "VIDC.RT21")
  234.     IF I% = 0  THEN
  235.        CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.RT21", "ir21_r.dll", cmoOverwrite
  236.     END IF
  237.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "VIDC.YVU9", "ir21_r.dll", cmoOverwrite
  238.     CreateIniKeyValue WinDir$ + "WIN.INI", "mci extensions", "avi", "AVIVideo", cmoOverwrite
  239.     CreateIniKeyValue WinDir$ + "system.ini", "mci", "AVIVideo", "mciavi.drv", cmoOverwrite
  240.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "WaveMapper", "msacm.drv", cmoOverwrite
  241.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "MSACM.msadpcm", "msadpcm.acm", cmoOverwrite
  242.     CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "MSACM.imaadpcm", "imaadpcm.acm", cmoOverwrite
  243.     CreateIniKeyValue WinDir$ + "control.ini", "drivers.desc", "msacm.drv", "Microsoft Sound Mapper V2.00", cmoOverwrite
  244.     CreateIniKeyValue WinDir$ + "control.ini", "drivers.desc", "msadpcm.acm", "Microsoft ADPCM Codec V2.00", cmoOverwrite
  245.     CreateIniKeyValue WinDir$ + "control.ini", "drivers.desc", "imaadpcm.acm", "Microsoft IMA ADPCM Codec V2.00", cmoOverwrite
  246.  
  247. ''*************************************************************************************************************************
  248. ''*************************************************************************************************************************
  249. ''To add a DCI provider, please un-comment the UDH line, and un-comment and replace the    <provider> with your own file name
  250. ''
  251. ''  CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "DCI", "<provider>", cmoOverwrite
  252. ''  CreateIniKeyValue WinDir$ + "system.ini", "Drivers", "vids.draw", "udh.dll", cmoOverwrite
  253. ''*************************************************************************************************************************
  254. ''*************************************************************************************************************************
  255.  
  256. ''Do not register components not installed with Video for Windows on NT or next version of Windows.
  257. IF ((NOT OnNT$ = "TRUE") AND MinorVer% < 50) THEN
  258.     Run ("regedit.exe /s " + MakePath(WinDir$, "mplayer.reg"))
  259.     Run ("regedit.exe /s " + MakePath(WinSysDir$, "OLE2.reg"))
  260.     Run ("regedit.exe /s " + MakePath(WinSysDir$, "cleanup.reg"))
  261.  
  262. '' Mplayer
  263.     CreateProgmanItem "Accessories", "Media Player", MakePath(WinDir$, "mplayer.exe"), "", cmoOverwrite
  264.  
  265. END IF    ''NT and next version of Windows installation stop here.
  266.  
  267.     Run ("profdisp.exe")   
  268. END SUB
  269.  
  270. '**
  271. '** Purpose:
  272. '**     Appends a file name to the end of a directory path,
  273. '**     inserting a backslash character as needed.
  274. '** Arguments:
  275. '**     szDir$  - full directory path (with optional ending "\")
  276. '**     szFile$ - filename to append to directory
  277. '** Returns:
  278. '**     Resulting fully qualified path name.
  279. '*************************************************************************
  280. FUNCTION MakePath (szDir$, szFile$) STATIC AS STRING
  281.     IF szDir$ = "" THEN
  282.     MakePath = szFile$
  283.     ELSEIF szFile$ = "" THEN
  284.     MakePath = szDir$
  285.     ELSEIF MID$(szDir$, LEN(szDir$), 1) = "\" THEN
  286.     MakePath = szDir$ + szFile$
  287.     ELSE
  288.     MakePath = szDir$ + "\" + szFile$
  289.     END IF
  290. END FUNCTION
  291.